home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Taifun / Taifun 040 (1987-11-15)(Ossowski, Stefan)(DE)(PD).zip / Taifun 040 (1987-11-15)(Ossowski, Stefan)(DE)(PD).adf / A68k / makefile < prev    next >
Makefile  |  1989-01-18  |  715b  |  30 lines

  1. # Simple makefile to compile and link the A68k Assembler.
  2. # Created 23Jun87 by J.A. Lydiatt
  3. #
  4.  
  5. OBJ=    A68kmain.o Opcodes.o Operands.o Adirect.o A68kmisc.o\
  6.     Symtab.o Codegen.o wb_parse.o
  7.  
  8. SHARLIB1= A68k.doc makefile A68kdef.h A68kglb.h A68kmain.c Opcodes.c Operands.c\
  9.     Adirect.c A68kmisc.c Symtab.c Codegen.c wb_parse.c
  10.  
  11. SHARLIB2= A68k.uue
  12.  
  13. A68k:    $(OBJ)
  14.     ln -o A68k $(OBJ) -lc
  15.  
  16. $(OBJ):    A68kdef.h A68kglb.h
  17.  
  18. #
  19. # Note: Manx's makefile seems to have a bug that forbids indirection
  20. #    such as "shar >lib a.c  b.c c.c"
  21. #    however "make >lib" seems to work fine if you edit out the
  22. #    commands make echos as it proceeds through the makefile.
  23. #
  24. #    Try make >ram:shardcp Archive 
  25. #
  26.  
  27. Archive:
  28.     shar $(SHARLIB1)
  29.     shar $(SHARLIB2)
  30.